CREATE TABLE adempiere.Q_Questionnaire
(
  Q_Questionnaire_ID numeric(10,0) NOT NULL,
  Q_Questionnaire_uu character varying(36) DEFAULT NULL::character varying,
  AD_Client_ID numeric(10,0) NOT NULL,
  AD_Org_ID numeric(10,0) NOT NULL,
  IsActive character(1) NOT NULL DEFAULT 'Y'::bpchar,
  Created timestamp without time zone NOT NULL DEFAULT now(),
  CreatedBy numeric(10,0) NOT NULL,
  Updated timestamp without time zone NOT NULL DEFAULT now(),
  UpdatedBy numeric(10,0) NOT NULL,

  C_BPartner_ID  numeric(10,0) NOT NULL,
  AD_User_ID numeric(10,0),
  IsMan character(1) NOT NULL DEFAULT 'N'::bpchar,
  Date1 timestamp without time zone NOT NULL DEFAULT now(),
  Birthday timestamp without time zone,
  M_Product_ID numeric(10,0),
  M_Product2_ID numeric(10,0),
  Price numeric,
  Price2 numeric,
  Description character varying(255),

  CONSTRAINT Q_Questionnaire_pkey PRIMARY KEY (Q_Questionnaire_id)
)